home *** CD-ROM | disk | FTP | other *** search
/ CD World Haziran 1997 / CD World Haziran 1997.iso / Programlama ve Gelistirme / DTime / _SETUP.1 / Dtset.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-04  |  769 b   |  46 lines

  1. // MyCplApp.h : main header file for the MYCPLAPP DLL
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8.  
  9. #ifndef _DTSET_H_
  10. #define _DTSET_H_
  11.  
  12.  
  13. #include "resource.h"
  14. #include "ctrlpan.h"
  15.  
  16.  
  17. class CMyPanel : public CControlPanel
  18. {
  19. public:
  20.   virtual LONG OnInquire(UINT uAppNum, NEWCPLINFO* pInfo); 
  21.   virtual LONG OnDblclk(HWND hwndCPl, UINT uAppNum, LONG lData); 
  22. };
  23.  
  24.  
  25.  
  26. class CMyCplAppApp : public CWinApp
  27. {
  28. public:
  29.     CMyCplAppApp();
  30.  
  31.  
  32.     //{{AFX_VIRTUAL(CMyCplAppApp)
  33.     public:
  34.     virtual void WinHelp(DWORD dwData, UINT nCmd = HELP_CONTEXT);
  35.     //}}AFX_VIRTUAL
  36.  
  37.     //{{AFX_MSG(CMyCplAppApp)
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.  
  41.   // local data
  42.   CMyPanel m_Control;
  43. };
  44.  
  45.  
  46. #endif //_DTSET_H_